encoding/asn1.tagAndLength.tag (field)

20 uses

	encoding/asn1 (current package)
		asn1.go#L534: 	ret.tag = int(b & 0x1f)
		asn1.go#L538: 	if ret.tag == 0x1f {
		asn1.go#L539: 		ret.tag, offset, err = parseBase128Int(bytes, offset)
		asn1.go#L544: 		if ret.tag < 0x1f {
		asn1.go#L616: 		switch t.tag {
		asn1.go#L621: 			t.tag = TagPrintableString
		asn1.go#L624: 			t.tag = TagUTCTime
		asn1.go#L627: 		if !matchAny && (t.class != ClassUniversal || t.isCompound != compoundType || t.tag != expectedTag) {
		asn1.go#L696: 			switch t.tag {
		asn1.go#L750: 		if t.class == expectedClass && t.tag == *params.tag && (t.length == 0 || t.isCompound) {
		asn1.go#L790: 			switch t.tag {
		asn1.go#L792: 				universalTag = t.tag
		asn1.go#L801: 	if universalTag == TagUTCTime && t.tag == TagGeneralizedTime && t.class == ClassUniversal {
		asn1.go#L832: 	if !matchAnyClassAndTag && (t.class != expectedClass || t.tag != expectedTag) ||
		asn1.go#L853: 		*v = RawValue{t.class, t.tag, t.isCompound, innerBytes, bytes[initOffset:offset]}
		common.go#L52: 	class, tag, length int
		marshal.go#L253: 	if t.tag >= 31 {
		marshal.go#L256: 		dst = appendBase128Int(dst, int64(t.tag))
		marshal.go#L258: 		b |= uint8(t.tag)
		marshal.go#L702: 				tag:        *params.tag,